:root{
    --background-color:white;
    --font-color:black;
    --font-color-white:white;
    --black-hover-color:rgba(0, 0, 0, 0.469);
    --white-hover-color:#ffffff;
    --bottums-color: #025959;
    --sections-bakcground-color:#f9f9f9;
    
}
/* Header Section */
.hero {
    background-image: url('images/gallery\ hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}
body {
    margin-top: 0;
  
    font-family: Arial, sans-serif;
    background: #f9f9f9;
  }
  header {
    background: #025959;
    color: white;
    padding: 20px;
    text-align: center;
    
    padding-top: 100px;
  }
  .container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }
  h2 {
    color: #025959;
  }
  #map {
    height: 500px;
    margin: 20px 0;
    border: 2px solid #ccc;
  }
  .spot {
    background: white;
    padding: 15px;
    margin: 20px 50px;
    border-left: 5px solid #026773;
    box-shadow: 0 0 5px rgba(0,0,0,0.1); 
  }
  .spot a{
      text-decoration: none;
      color: black;
      
  }